home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 11255 / 11255.xpi / chrome / content / config.js next >
Text File  |  2009-12-17  |  2KB  |  56 lines

  1. ∩╗┐/* ***** BEGIN LICENSE BLOCK *****
  2.  * 
  3.  * Pearltrees add-on AMO, Copyright(C), 2009, Broceliand SAS, Paris, France 
  4.  * (company in charge of developing Pearltrees)
  5.  * 
  6.  * This file is part of ΓÇ£Pearltrees add-on AMOΓÇ¥.  
  7.  * 
  8.  * Pearltrees add-on AMO is free software: you can redistribute it and/or modify it under the 
  9.  * terms of the GNU General Public License version 3 as published by the Free Software Foundation.
  10.  * 
  11.  * Pearltrees add-on AMO is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
  12.  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
  13.  * See the GNU General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License along with Pearltrees add-on AMO. 
  16.  * If not, see <http://www.gnu.org/licenses/>
  17.  * 
  18.  * ***** END LICENSE BLOCK ***** */
  19.  
  20. // Configuration file
  21. // 
  22. // You should copy this file in a new file config.js and then update 
  23. // the following parameters in order to match your local configuration.
  24. // 
  25. /////////////////////////////////////////////////////////////////////////////////
  26.  
  27. var base = 'pearltrees.com';
  28. var publicUrlDomain = 'www';
  29.  
  30. const BRO_ADDON_SOURCE_SELFHOSTED = 1;
  31. const BRO_ADDON_SOURCE_AMO = 2;
  32.  
  33. const BRO_ADDON_SOURCE = BRO_ADDON_SOURCE_AMO;
  34.  
  35.  
  36.  
  37.  
  38. var privateServices = 's';
  39. var selfhostedService = 'collectorFirefox';
  40. var amoService = 'collectorAmo';
  41.  
  42. const BRO_SERVICE_URL = 'http://' + publicUrlDomain + '.' + base + '/' + privateServices + '/';
  43. if(BRO_ADDON_SOURCE == BRO_ADDON_SOURCE_AMO) {
  44.     var serviceUrlForSource = BRO_SERVICE_URL + amoService + '/';
  45. }else{
  46.     var serviceUrlForSource = BRO_SERVICE_URL + selfhostedService + '/';
  47. }
  48. const BRO_SERVICE_FF_URL = serviceUrlForSource;
  49. const BRO_PUBLIC_URL = 'http://' + publicUrlDomain + '.' + base;
  50.  
  51. const BRO_AMO_FILE_URL = 'https://addons.mozilla.org/downloads/latest/11255/addon-11255-latest.xpi';
  52. const BRO_AMO_SOURCE = 'external-selfhost';
  53. const BRO_AMO_VERSION_CHECK = 'https://versioncheck.addons.mozilla.org/update/VersionCheck.php';
  54.  
  55. const BRO_ADDON_ID = 'collector@broceliand.fr';
  56.